home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue44 / comcorn / ByteArray / Server.dpr < prev    next >
Encoding:
Text File  |  1999-03-01  |  301 b   |  18 lines

  1. program Server;
  2.  
  3. uses
  4.   Forms,
  5.   ServMain in 'ServMain.pas' {MainForm},
  6.   Server_TLB in 'Server_TLB.pas',
  7.   ServObj in 'ServObj.pas' {BinaryData: CoClass};
  8.  
  9. {$R *.TLB}
  10.  
  11. {$R *.RES}
  12.  
  13. begin
  14.   Application.Initialize;
  15.   Application.CreateForm(TMainForm, MainForm);
  16.   Application.Run;
  17. end.
  18.